/* Seccion con imágenes */
.contenedor_inicial .row {
    max-width: 1920px;
    justify-content: center;
    overflow: hidden;
    font-family: 'Avenir' 'sans-serif';
}

.contenedor_inicial,
.contenedor_img,
.info {
    display: flex;
    justify-content: center;
}

.contenedor_inicial {
    align-items: center;
}

.contenedor_img {
    width: 100%;
    padding-inline: 0 !important;
    position: relative;
}

.contenedor_img img.registro,
.contenedor_img img.wtc,
.contenedor_img img.paciente {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info {
    margin-top: 32px;
    color: #545454;
    text-align: center;
    font-weight: 500;
    flex-direction: column;
    align-items: center;
    font-size: 18px;


    h1 {
        color: #03A591;
        font-size: 28px;
        font-weight: 800;
    }

    h1,
    p {
        max-width: 550px;
    }
}

@media (min-width: 992px) {
    .contenedor_img img.wtc {
        height: auto;
        margin-top: -7.2%;
    }

    .info {
        margin-top: 0px;
    }

    .info h1,
    .info p {
        max-width: 480px;
    }

}

@media (min-width: 1420px) {
    .contenedor_img img.registro {
        content: url('../../../public/images/cdmx2024/inicio/expo_gdl/8va_edicion.webp');
        height: auto;
        width: 100%;
    }

    .contenedor_img img.wtc {
        content: url('../../../public/images/cdmx2024/inicio/expo_gdl/EXPO_GDL.webp');
        height: auto;
        width: 100%;
        margin-top: -14.5%;
    }

    .info h1,
    .info p {
        max-width: 440px;
    }

    .info h1.edicion,
    .info p.edicion, 
    .img-logo {
        margin-left: 25%
    }

    .info h1.wtc,
    .info p.wtc {
        margin-right: 25%
    }
}

/* Seguridad del paciente */

.contenedor {
    position: relative;
    display: inline-block;
    text-align: center;
}

.centrado {
    position: absolute;
    top: 47%;
    left: -310px;
    transform: rotate(90deg);

    color: #FFF;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.30);
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.centrado_en {
    left: -300px;
}

@media (max-width: 480px) {
    .centrado {
        left: -230px;
        font-size: 27px;
    }

    .centrado_en {
        left: -220px;
    }
}

@media (min-width: 576px) {
    .contenedor_img.contenedor img {
        content: url('../../../public/images/cdmx2024/inicio/expo_gdl/seguridad_del_paciente_gdl.webp');
        max-width: 1920px;
    }

    .centrado {
        top: auto;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%) rotate(0deg);
        font-size: clamp(28px, 4vw, 48px);
    }
}

/* --------- qUIERO SER ---------- */
.col_quiero_ser {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.col_quiero_ser img {
    margin-bottom: 20px;
}

img.quiero_ser {

    &.grow {
        transition: all .2s ease-in-out;

        &:hover {
            transform: scale(1.1);
        }
    }
}

.text_quiero_ser {
    color: #03547E;
    font-size: 32px;
    font-weight: 500;
    line-height: 118.33%;
    display: contents;

    span {
        font-size: 32px;
        font-weight: 900;
    }
}

@media (max-width: 1110px) and (min-width: 768px) {
    img.quiero_ser {
        width: 225px;
        height: 226px;
    }
}

.img-logo {
    /* margin: 30px 0px; */
    justify-content: center;
    display: flex;
}

.img-logo img {
    max-width: 350px;
}

@media(max-width:480px) {
    .img-logo img {
        max-width: clamp(320px, 90vw, 350px);
    }
}